* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace RectorPrefix202411\Symfony\Component\Console\Messenger; /** * @author Kevin Bond */ final class RunCommandContext { /** * @readonly * @var \Symfony\Component\Console\Messenger\RunCommandMessage */ public $message; /** * @readonly * @var int */ public $exitCode; /** * @readonly * @var string */ public $output; public function __construct(RunCommandMessage $message, int $exitCode, string $output) { $this->message = $message; $this->exitCode = $exitCode; $this->output = $output; } }